home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / FishHack / source / Basic_DebugHeaders.pch++ < prev    next >
Text File  |  2000-06-23  |  1KB  |  33 lines

  1. // ===========================================================================
  2. //    Basic_DebugHeaders.pch++    ©1995-1998 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4. //
  5. //    Source for precompiled header for PowerPlant headers
  6. //
  7. //    This file #includes most header files for the PowerPlant library,
  8. //    as well as most of the Toolbox headers used by the PowerPlant library
  9. //    with all debugging symbols defined.
  10.  
  11.  
  12.     // This same file works for PowerPC and 68K. We check the target
  13.     // at compile time and specify the appropriate output file name.
  14.     
  15. #if __POWERPC__
  16.     #pragma precompile_target "Basic_DebugHeadersPPC++"
  17.     
  18. #else
  19.     #pragma precompile_target "Basic_DebugHeaders68K++"
  20. #endif
  21.  
  22. #pragma once on
  23.  
  24.     // Option for using PowerPlant namespace
  25.  
  26. #define PP_Uses_PowerPlant_Namespace        0    // off, don't use PowerPlant namespace
  27.  
  28.     // establish some essential PowerPlant macros:
  29.     
  30. #define PP_StdDialogs_Option    PP_StdDialogs_ClassicOnly    // use classic standard dialog
  31.                                                             // implementation
  32.  
  33. #include <PP_DebugHeaders.cp>